-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove self destructs from the native tracer #461
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thanks!
clippy issues are addressed in #451 if you haven't already seen |
Yes I know. I need to wait until #451 is merged I guess. |
Nah. If you're finished with the PR I can just merge it, we know what the CI issue is and it's fixed elsewhere. |
Yes, it's finished. |
After EIP-6780 the only accounts that can be selfdestructed are those created in the current transaction. On the other hand
apply_deltas_to_trie_state
was deleting from the next trie exactly the accounts that shouldn't be deleted after EIP-6780, making some blocks (20000275, 20000407, 20000724, 20000747, 20000750, and 20000785) fail. This PR fixes this issue.